%%{init: {
'theme': 'dark',
'themeVariables': {
'primaryColor': '#ff9800',
'primaryTextColor': '#fff',
'primaryBorderColor': '#fff',
'lineColor': '#fff',
'secondaryColor': '#006064',
'tertiaryColor': '#4caf50',
'mainBkg': '#2d3436',
'nodeBorder': '#ff9800',
'clusterBkg': '#2d3436',
'clusterBorder': '#ff9800'
}
}}%%
graph TB
A[Geographic Analysis] --> B{Performance Metrics}
B --> C[Response Times]
B --> D[Cache Performance]
B --> E[Error Rates]
C --> F[Regional TTFB]
C --> G[Origin Latency]
D --> H[Regional Cache Hits]
D --> I[Bandwidth Usage]
E --> J[Error Distribution]
E --> K[Timeout Patterns]
F --> L{Action Items}
G --> L
H --> L
I --> L
J --> L
K --> L
L --> M[Build Observability]
L --> N[Origin Placement]
L --> O[Cache Rules]
L --> P[Error Handling]
classDef orange fill:#ff9800,stroke:#fff,stroke-width:2px,color:#fff;
classDef blue fill:#006064,stroke:#fff,stroke-width:2px,color:#fff;
classDef green fill:#4caf50,stroke:#fff,stroke-width:2px,color:#fff;
class A,B,L orange;
class C,D,E blue;
class F,G,H,I,J,K,M,N,O,P green;